Skip to main content
POST
/
action
/
meeting_followup_enrich_meeting_event
[F3] Enrich Meeting Event
curl --request POST \
  --url https://api-lr.agent.ai/v1/action/meeting_followup_enrich_meeting_event \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "event_id": "{{selected_meeting.meeting_id}}",
  "calendar_provider": "googlecalendar",
  "output_variable_name": "enriched_event",
  "include_attendees": true,
  "include_transcript": true,
  "include_ai_insights": true
}
'
{
  "status": 123,
  "response": {}
}

Authorizations

Authorization
string
header
required

Bearer token from your account (https://agent.ai/user/integrations#api)

Body

application/json
event_id
string
default:{{selected_meeting.meeting_id}}
required

Calendar event ID to enrich.

calendar_provider
enum<string>
default:googlecalendar
required

Calendar service provider.

Available options:
googlecalendar
output_variable_name
string
default:enriched_event
required

Variable name to store enriched event data.

Pattern: ^[a-zA-Z][a-zA-Z0-9_]*$
include_attendees
boolean
default:true

Include attendee information.

include_transcript
boolean
default:true

Include meeting transcript if available.

include_ai_insights
boolean
default:true

Include AI-generated meeting insights.

Response

Successful response

status
integer<int32>

HTTP status code of the action response

response
object

Response data from the action